@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.CTA {
  animation: pulse 2s infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.wiggle {
  display: inline-block;
  animation: wiggle 5s ease-in-out infinite;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 21s linear infinite;
  will-change: transform;
}

.slide {
  min-width: calc(100% / 7); /* Each slide takes up 1/7th of the track */
  flex-shrink: 0;
  margin-right: 20px; /* Space between each slide */
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - (20px * 7))); /* Moves across the total width of the slides */
}

/* Edge Feather Effect */
.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
    
.carousel img {
    width: auto;    /* makes the image responsive */
    height: 180px;   /* maintains the aspect ratio */
    display: block; /* removes bottom space/gap */
}
    
.zcwf_row {
  display: flex;
  align-items: center;
  white-space: nowrap; /* Ensures elements are on the same line without wrapping */
}

.newCustomchkbox-md {
  display: flex;
  align-items: center;
  margin-right: 10px; /* Adjusts space between checkbox and text */
}
    